// fail others
for (FrameEntry fe : queue)
{
fe.notifyFailure(t);
notified = true;
}
failure = t;
// fail past
while(!past.isEmpty())
{
FrameEntry entry = past.pop();
entry.notifyFailure(t);
notified = true;
}